route.ts 169 B

12345
  1. import NextAuth from 'next-auth';
  2. import { authConfig } from '@/lib/auth';
  3. const authHandler = NextAuth(authConfig);
  4. export {authHandler as GET , authHandler as POST};